Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
can-set is a utility for comparing sets that are represented by the parameters commonly passed to service requests.
For example, the set {type: "critical"}
might represent all
critical todos. It is a superset of the set {type: "critical", due: "today"}
which might represent all critical todos due today.
can-set is useful for building caching and other data-layer optimizations. It can be used in client or server environments. can-connect uses can-set to create data modeling utilities and middleware for the client.
new set.Algebra(compares...)
Compares Object<String,Prop()>
prop(aValue, bValue, a, b, prop, algebra)
algebra.difference(a, b)
algebra.equal(a, b)
algebra.getSubset(a, b, bData)
algebra.getUnion(a, b, aItems, bItems)
algebra.index(set, items, item)
algebra.count(set)
algebra.has(set, props)
algebra.properSubset(a, b)
algebra.subset(a, b)
algebra.union(a, b)
props Object
new set.Translate(clauseType, propertyName)
Use npm to install can-set
:
npm install can-set --save
Use require
in Node/Browserify workflows to import can-set
like:
var set = require('can-set');
Use define
, require
or import
in StealJS workflows to import can-set
like:
import set from 'can-set'
Once you've imported set
into your project, use it to create a set.Algebra
and then
use that to compare and perform operations on sets.
// create an algebra
var algebra = new set.Algebra(
// specify the unique identifier on data
set.props.id("_id"),
// specify that completed can be true, false or undefined
set.props.boolean("completed"),
// specify properties that define pagination
set.props.rangeInclusive("start","end"),
// specify the property that controls sorting
set.props.sort("orderBy"),
)
// compare two sets
algebra.subset({start: 2, end: 3}, {start: 1, end: 4}) //-> true
algebra.difference({} , {completed: true}) //-> {completed: false}
// perform operations on sets
algebra.getSubset({start: 2,end: 3},{start: 1,end: 4},
[{id: 1},{id: 2},{id: 3},{id: 4}])
//-> [{id: 2},{id: 3}]
Once you have the basics, you can use set algebra to all sorts of intelligent caching
and performance optimizations. The following example
defines a getTodos
function that gets todo data from a memory cache or from the server.
var algebra = new set.Algebra(
set.props.boolean("completed")
);
var cache = [];
// `params` might look like `{complete: true}`
var getTodos = function(set, cb) {
// Check cache for a superset of what we are looking for.
for(var i = 0 ; i < cache.length; i++) {
var cacheEntry = cache[i];
if(algebra.subset( set, cacheEntry.set ) ) {
// If a match is found get those items.
var matchingTodos = algebra.getSubset(set, cacheEntry.set, cacheEntry.items)
return cb(matchingTodos);
}
}
// not in cache, get and save in cache
$.get("/todos",set, function(todos){
cache.push({
set: set,
items: todos
});
cb(todos);
});
}
new set.Algebra(compares...)
Creates an object that can perform binary operations on sets with an awareness of how certain properties represent the set.
var set = require("can-set");
var algebra = new set.Algebra(
set.props.boolean("completed"),
set.props.id("_id")
);
{Compares}
:
Each argument is a compares. These
are returned by the functions on props or can be created
manually.{Object\<String,Prop()\>}
An object of property names and prop
functions.
{
// return `true` if the values should be considered the same:
lastName: function(aValue, bValue){
return (""+aValue).toLowerCase() === (""+bValue).toLowerCase();
}
}
prop(aValue, bValue, a, b, prop, algebra)
A prop function returns algebra values for two values for a given property.
{*}
:
The value of A's property in a set difference A and B (A B).{*}
:
The value of A's property in a set difference A and B (A B).{*}
:
The A set in a set difference A and B (A B).{*}
:
The B set in a set difference A and B (A B).returns {Object|Boolean}
:
A prop function should either return a Boolean which indicates if aValue
and bValue
are
equal or an AlgebraResult
object that details information about the union, intersection, and difference of aValue
and bValue
.
An AlgebraResult
object has the following values:
union
- A value the represents the union of A and B.intersection
- A value that represents the intersection of A and B.difference
- A value that represents all items in A that are not in B.count
- The count of the items in A.For example, if you had a colors
property and A is ["Red","Blue"]
and B is ["Green","Yellow","Blue"]
, the
AlgebraResult object might look like:
{
union: ["Red","Blue","Green","Yellow"],
intersection: ["Blue"],
difference: ["Red"],
count: 2000
}
The count is 2000
because there might be 2000 items represented by colors "Red" and "Blue". Often
the real number can not be known.
algebra.difference(a, b)
Returns a set that represents the difference of sets A and B (A \ B), or returns if a difference exists.
algebra1 = new set.Algebra(set.props.boolean("completed"));
algebra2 = new set.Algebra();
// A has all of B
algebra1.difference( {} , {completed: true} ) //-> {completed: false}
// A has all of B, but we can't figure out how to create a set object
algebra2.difference( {} , {completed: true} ) //-> true
// A is totally inside B
algebra2.difference( {completed: true}, {} ) //-> false
returns {Set|Boolean}
:
If an object is returned, it is difference of sets A and B (A \ B).
If true
is returned, that means that B is a subset of A, but no set object
can be returned that represents that set.
If false
is returned, that means there is no difference or the sets are not comparable.
algebra.equal(a, b)
Returns true if the two sets the exact same.
algebra.equal({type: "critical"}, {type: "critical"}) //-> true
{Boolean}
:
True if the two sets are equal.algebra.getSubset(a, b, bData)
Gets a
set's items given a super set b
and its items.
algebra.getSubset(
{type: "dog"},
{},
[{id: 1, type:"cat"},
{id: 2, type: "dog"},
{id: 3, type: "dog"},
{id: 4, type: "zebra"}]
) //-> [{id: 2, type: "dog"},{id: 3, type: "dog"}]
{Set}
:
The set whose data will be returned.{Set}
:
A superset of set a
.{Array<Object>}
:
The data in set b
.{Array<Object>}
:
The data in set a
.algebra.getUnion(a, b, aItems, bItems)
Unifies items from set A and setB into a single array of items.
algebra = new set.Algebra(
set.props.rangeInclusive("start","end")
);
algebra.getUnion(
{start: 1,end: 2},
{start: 2,end: 4},
[{id: 1},{id: 2}],
[{id: 2},{id: 3},{id: 4}]);
//-> [{id: 1},{id: 2},{id: 3},{id: 4}]
{Set}
:
A set.{Set}
:
A set.{Array<Object>}
:
Set a
's items.{Array<Object>}
:
Set b
's items.{Array<Object>}
:
Returns items in both set a
and set b
.algebra.index(set, items, item)
Returns where item
should be inserted into items
which is represented by set
.
algebra = new set.Algebra(
set.props.sort("orderBy")
);
algebra.index(
{orderBy: "age"},
[{id: 1, age: 3},{id: 2, age: 5},{id: 3, age: 8},{id: 4, age: 10}],
{id: 6, age: 3}
) //-> 2
The default sort property is what is specified by id. This means if that if the sort property is not specified, it will assume the set is sorted by the specified id property.
{Set}
:
The set
that describes items
.{Array<Object>}
:
An array of data objects.{Object}
:
The data object to be inserted.{Number}
:
The position to insert item
.algebra.count(set)
Returns the number of items that might be loaded by the set
. This makes use of set.Algebra's
By default, this returns Infinity.
var algebra = new set.Algebra({
set.props.rangeInclusive("start", "end")
});
algebra.count({start: 10, end: 19}) //-> 10
algebra.count({}) //-> Infinity
{Set}
:
[description]{Number}
:
The number of items in the set if known, Infinity
if unknown.algebra.has(set, props)
Used to tell if the set
contains the instance object props
.
var algebra = new set.Algebra(
new set.Translate("where","$where")
);
algebra.has(
{"$where": {playerId: 5}},
{id: 5, type: "3pt", playerId: 5, gameId: 7}
) //-> true
{Set}
:
A set.{Object}
:
An instance's raw data.{Boolean}
:
Returns true
if props
belongs in set
and
false
it not.algebra.properSubset(a, b)
Returns true if A is a strict subset of B (A ⊂ B).
algebra.properSubset({type: "critical"}, {}) //-> true
algebra.properSubset({}, {}) //-> false
{Boolean}
:
true
if a
is a subset of b
and not equal to b
.algebra.subset(a, b)
Returns true if A is a subset of B or A is equal to B (A ⊆ B).
algebra.subset({type: "critical"}, {}) //-> true
algebra.subset({}, {}) //-> true
{Boolean}
:
true
if a
is a subset of b
.algebra.union(a, b)
Returns a set that represents the union of A and B (A ∪ B).
algebra.union(
{start: 0, end: 99},
{start: 100, end: 199},
) //-> {start: 0, end: 199}
returns {Set|undefined}
:
If an object is returned, it is the union of A and B (A ∪ B).
If undefined
is returned, it means a union can't be created.
{Object}
Contains a collection of prop generating functions.
The following functions create compares
objects that can be mixed together to create a set Algebra
.
var set = require("can-set");
var algebra = new set.Algebra(
{
// ignore this property in set algebra
sessionId: function(){ return true }
},
set.props.boolean("completed"),
set.props.rangeInclusive("start","end")
);
set.props.boolean(property)
Makes a compare object with a property
function that has the following logic:
A(true) ∪ B(false) = undefined
A(undefined) \ B(true) = false
A(undefined) \ B(false) = true
It understands that true
and false
are complementary sets that combined to undefined
. Another way to think of this is that if you load {complete: false}
and {complete: true}
you've loaded {}
.
{String}
:
The name of the boolean property.{Compares}
:
Compares
object that can be an argument to Algebraset.props.rangeInclusive(startIndexProperty, endIndexProperty)
Makes a prop for two ranged properties that specify a range of items that includes both the startIndex and endIndex. For example, a range of [0,20] loads 21 items.
set.props.rangeInclusive("start","end")
{String}
:
The starting property name{String}
:
The ending property name{Compares}
:
Returns a propset.props.enum(property, propertyValues)
Makes a prop for a set of values.
var compare = set.props.enum("type", ["new","accepted","pending","resolved"])
set.props.sort(prop, [sortFunc])
Defines the sortable property and behavior.
var algebra = new set.Algebra(set.props.sort("sortBy"));
algebra.index(
{sortBy: "name desc"},
[{name: "Meyer"}],
{name: "Adams"}) //-> 1
algebra.index(
{sortBy: "name"},
[{name: "Meyer"}],
{name: "Adams"}) //-> 0
{String}
:
The sortable property.{function(sortPropValue, item1, item2)}
:
The
sortable behavior. The default behavior assumes the sort property value
looks like PROPERTY DIRECTION
(ex: name desc
).{Compares}
:
Returns a compares that can be used to create
a set.Algebra
.set.props.id(prop)
Defines the property name on items that uniquely identifies them. This is the default sorted property if no sort is provided.
var algebra = new set.Algebra(set.props.id("_id"));
algebra.index(
{sortBy: "name desc"},
[{name: "Meyer"}],
{name: "Adams"}) //-> 1
algebra.index(
{sortBy: "name"},
[{name: "Meyer"}],
{name: "Adams"}) //-> 0
{String}
:
The property name that defines the unique property id.{Compares}
:
Returns a compares that can be used to create
a set.Algebra
.new set.Translate(clauseType, propertyName)
Localizes a clause's properties within another nested property.
var algebra = new set.Algebra(
new set.Translate("where","$where")
);
algebra.has(
{$where: {complete: true}},
{id: 5, complete: true}
) //-> true
This is useful when filters (which are where
clauses) are
within a nested object.
{String}
:
A clause type. One of 'where'
, 'order'
, 'paginate'
, 'id'
.{String|Object}
:
The property name which contains the clauses's properties.{Compares}
:
A set compares object that can do the translation.To setup your dev environment:
npm install
.test.html
in your browser. Everything should pass.npm test
. Everything should pass.npm run-script build
. Everything should build ok.To publish:
npm publish
. This should generate the dist folder.git add -f dist
.git tag v0.2.0
. Push the tag git push origin --tags
.FAQs
Set logic for CanJS
The npm package can-set receives a total of 1,478 weekly downloads. As such, can-set popularity was classified as popular.
We found that can-set demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.